Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Automatically build and push image to Docker Hub when new tag is pushed #1386

Merged
merged 2 commits into from
Apr 16, 2021

Conversation

amCap1712
Copy link
Member

Our deployment workflow is a bit convoluted. One step in simplifying the deployment is to automate building of docker images. Hence, adding an actions workflow for it.

on:
push:
tags:
- '*'
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

does this mean that it'll only build if we make a tag? What about making it a bit more specific? Can we ensure that the tag is formatted correctly?

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yes, it'll only build and push the image on a tag. Yes, I think it supports regex so we can restrict the build to properly formatted tags.

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We can do something like v-[0-9]{4}-[0-9]{2}-[0-9]{1,2}.[0-9]+ instead of * to trigger the workflow only if the tag matches the regex.

- name: Build and push image
# Github stores the current tag in an enviroment variable (GITHUB_REF) in the format /refs/tags/TAG_NAME.
# Using shell parameter expansion, we extract the TAG_NAME.
run: ./docker/push.sh 'prod' "${GITHUB_REF/refs\/tags\//}"
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I opened a ticket about improving push.sh to make it fail properly if any intermediate process fails (e.g. don't push if the build fails). Maybe we could include that here? (although I guess the push will fail also if the build fails, because the tagged version won't exist)

@alastair
Copy link
Collaborator

this is super cool!

on:
push:
tags:
- 'v-[0-9]{4}-[0-9]{2}-[0-9]{1,2}.[0-9]+'
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I would think it should be \. instead of . but the semver example in the docs says otherwise,

Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

it looks like they're patterns, not regexes, so the guidelines are probably correct.

Copy link
Collaborator

@alastair alastair left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

🎆

@amCap1712 amCap1712 merged commit 3fcb658 into master Apr 16, 2021
@amCap1712 amCap1712 deleted the deploy-image branch April 16, 2021 16:11
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
2 participants